BiWeeklyAnalyticsScreenContent

fun BiWeeklyAnalyticsScreenContent(modifier: Modifier = Modifier, viewModel: BiWeeklyAnalyticsViewModel = hiltViewModel(), onNavigateToSummaryDialog: (BiWeeklyEvaluationEntry?) -> Unit)

A composable function that displays the Bi-Weekly Analytics screen. It uses TabbedContent to present different sections such as the mood graph and evaluation history. The content is dynamically updated based on the data from the ViewModel.

Parameters

modifier

The modifier to be applied to the root composable.

viewModel

The ViewModel that provides the UI state and manages the bi-weekly evaluations.

onNavigateToSummaryDialog

A lambda function that handles navigation to a summary dialog for each evaluation entry.